The Soma

Google Search of SETI Net



The Soma

The Soma is the spherical central part of the neuron It is typically about 20 um in diameter and contains a salty potassium solution inside the cell. It is separated by the neural membrane as described earlier. Contained inside the Soma are a number of very important structures called organells but these are ignored in this simulator.

Many thousands of Inputs to the Soma arrive from the Dendrites. Its single output is the Axon

The key feature of the Soma is its ability to initiate an Action Potential in the area labeled the Axon Hillock (shown above). The spiking process starts in the Hillock also called the spike-initiation zone.

A typical action potential or spike is shown below.

Membranes of dendrites and the Soma body do not generate action potentials because they have very few voltage-gated sodium channels. Only the Soma hillock and the Axons are capable of generating action potentials.

The Action Potential profile begins at the membrane rest potential (about - 60 mV) and rises rapidly in the depolarization phase toward 0 mV. It overshoots the mark and then reverses back down to the resting potential. It then overshoots that and moves to the hyperpolerized region and then recovers to the resting potential. A drawing of this process is shown in section 2 Ionic Currents (near the bottom).

The software model used in this simulator is based on Dynmical Systems in Neuronscience by Izhikevich. It is not based upon biophysical parameters but is a model that faithfully reproduces all the neurocomputational dynamical features of the neuron. The model is a two-dimensional systems having a fast voltage variable and a slower “recovery” variable u, which describes activation of the K+ current or inactivation of the Na+ current or their combination. The model can reproduce spiking and bursting behavior of many known types of neurons and is described by a pair of differential equations

C d v d t = k ( v v r ) ( v v t ) u + S a n d d u d t = a { b ( v v r ) u } i f V V p e a k v c , u u + d


Those two equations make up a model called a Quadratic Integrate-and-fire neuron. In the Neuron Simulater this is implemented (in the Delph language) with this code:

Vout := Vin + tau * (k * (Vin - Vr) * (Vin - Vt) - Uin + i) / CAP;
Uout := Uin + tau * a * (b * (Vout - VRest) - Uin);
if Vout >= vpeak then
begin
  Vout := c;
  Vin := vpeak; // Reset the membrane
  Uout := Uout + d; // Reset the recovery variable 
end;

Where:

  • Vout = The current millisecond step calculated membrane potential [mV]
  • Vin = The last membrane potential at step -1 [mV]
  • Uout = The current calculated recovery value
  • Uin = The calculated recovery value at step -1
  • tau = Step time between samples
  • Cap = 100 Membrane capacitance [pF]
  • Vr = -60 Resting membrane potential [mV]
  • Vt = -40 instantaneous threshold potential. Above this a spike will occure [mV]
  • k = 0.7 Parameters used for RS type
  • a = 0.03 ; Recovery time constant [ms]
  • b = -2.0 Constant [pA/ohm]
  • c = -50 Membrane voltage reset
  • d = 100 ; For a neocortical pyramidal neuron

The numeric values for k,a,b,c, and d vary by the type of neuron being simulated.

Eugene Izhikevich founder and CEO Brain Corp. San Diego

You may chose different neuron types in the simulator through the Setup | Neuron Select menu.

Next: The Axon